home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Libraries / stdwin / Conf / proto.port.xxx < prev    next >
Encoding:
Text File  |  1990-08-08  |  1.0 KB  |  29 lines  |  [TEXT/????]

  1.  
  2. #
  3. # Definitions pertaining to the port to the XXX window system
  4. #
  5.  
  6. # NB: You are not expected to port STDWIN -- this has already been done.
  7. # This prototype file is provided mostly to document the definitions
  8. # exported from the various proto.port.* files, and as a template for
  9. # the STDWIN implementer.  And, of course, if you really WANT to port
  10. # stdwin to a new window system or look-and-feel (NeWS, or SunTools, or
  11. # OpenLook), you're welcome -- just check with the author of STDWIN
  12. # first to see if somebody else isn't planning to do the same.
  13.  
  14. # Define the name of this port.
  15. # This is used as a subdirectory name where all the objects for this
  16. # port for a given architecture live: $(TOP)/Build/$(ARCH)/$(PORT)
  17. #
  18. PORT=        XXX
  19.  
  20. # Libraries to link with for the X11 port.
  21. # Most of this is boilerplate, only the PORTSYSLIBS part depends on
  22. # what your system requires.
  23. #
  24. PORTOWNLIBS=    $(PORTBUILD)/lib/lib.a
  25. PORTSYSLIBS=    -lXXX
  26. PORTLIBS=    $(PORTOWNLIBS) $(PORTSYSLIBS)
  27.  
  28. # NB: -lXXX is really OS- or site-specific as well, sigh.
  29.